
.logo{
    width:190px ;
    height: 80px;
  
}
/* animated img */
/* mid-header */

.contact-item {
    font-size: 22px;
   
}

.contact-item i {
    font-size: 30px;
    color: var(--primary);
}

.address a {
    text-decoration: none;
    font-weight: 550;
}

.address small {
    font-size: 18px;
}

.btn-primary {
    background-color: #2c6136;
    font-size: 18px;
    padding: 5px 10px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .contact-item {
        margin-bottom: 10px;
    }

    .contact-item:last-child {
        margin-bottom: 0;
    }
}
/* nercery image */
.img-fix{
    width: 600px;
    height: 400px;
}

.image-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
  }
  
  .image-container img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .image-container:hover img {
    transform: scale(1.1);
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .image-container:hover .image-overlay {
    opacity: 1;
  }
  
  .image-overlay h3,
  .image-overlay p {
    margin: 0;
    text-align: center;
  }
  

/* ***************************** */
.nav-link:hover {
    border-top: 2px solid green; 
    color: green; 
}
.navbar .navbar-nav .nav-link {
    margin-right:10px;
    padding: 20px 10px; 
    color: var(--dark); 
    font-size: 18px; 
    font-weight: 500; 
    outline: none; 
    text-transform: uppercase;
    border-right: 1px solid  #e6e6e6;
    
}

.nav-item.dropdown:hover > a {
    border-top: 2px solid green; 
  
}

#navbarDropdownVerticalGarden:hover { 
    border-top: 2px solid green; 
    margin-right: 50px;
    
}
/* Add hover effect for all anchor tags inside the dropdown menu */
.dropdown-menu a:hover {
  color: #fff; /* Text color on hover */
  background-color: #2c6136; /* Green background on hover */
  text-decoration: none; /* Remove underline */
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}


/* Dropdown Items */
.dropdown-item {
    padding: 8px 15px;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
    background-color: green;
    color: #fff;
}

/* Navbar Alignment */
.navbar-nav {
    display: flex;
    justify-content: center; /* Center navigation items */
    gap: 10px; /* Spacing between items */
}

/* Navbar Toggler */

.navbar-toggler-icon {
  /* display: inline-block; */
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 100% !important;
  position: absolute;
  top: 90px;
  right: 15px;
}


@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
} 
/* footer */

.main-logo {
  background: url('../images/main-logo.png');
  background-position: center;
  background-repeat: no-repeat;
  width:230px;
  height: 80px;
  padding:10px;
  background-size: contain;
  border-radius: 50px; 
 
}


.footer {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/footer-img.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* height: 400px;  */
}

.footer h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #28a745;
  margin-bottom: 1rem;
}

.footer .btn-link {
  color: #f8f9fa;
  font-size: 1rem;
  padding: 0.5rem 0;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.footer .btn-link:hover {
  color: #28a745;
  text-decoration: underline;
}

/* Social Media Buttons */
.footer .btn-square {
  background-color: #28a745;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}


.footer .btn-square:hover {
  background-color: #218838;
}

/* Input Field for Newsletter */
.footer .form-control {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  font-size: 1rem;
  padding: 0.75rem;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.footer .form-control:focus {
  border-color: #28a745;
}

.footer .btn-primary {
  background-color: #28a745;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.footer .btn-primary:hover {
  background-color: #218838;
}

@media (max-width: 768px) {
  .footer .col-lg-3 {
      margin-bottom: 2rem;
  }
}

.footer .d-flex a {
  margin-right: 15px;
  transition: all 0.3s ease;
}

.footer .d-flex a:hover {
  transform: translateY(-5px);
}

/* Padding for Footer */
.footer .py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
